home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Plus! (NZ) 2000 May
/
PCW_MAY2000.iso
/
pc world.dir
/
00006_Script_6
< prev
next >
Wrap
Text File
|
2000-04-04
|
602b
|
30 lines
on exitFrame
global timex, ie, net, startup
timex= the timer
set ex = new(xtra "fileio") -- Create an instance of FileIO
openFile(ex, "pc.txt", 1) -- open file that user selected
set data = readFile(ex) -- Read the file into a Lingo variable
closeFile(ex) -- Close the file
set ex = 0 -- Dispose of the instance
set issue = word 1 of data
put "No."&issue into field "issue no"
set ie= word 2 of data
set net= word 3 of data
set startup = word 4 of data
end
end